home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C / Applications / Talking Clock Pro™ 2.0.1 / Talking Clock Pro Source / Controller / Headers / str.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-08-26  |  427 b   |  17 lines  |  [TEXT/CWIE]

  1. /*
  2.  * str.h
  3.  */
  4.  
  5. #pragma once
  6. #ifndef str_h
  7. # define str_h
  8.  
  9. void StrGet ( short id , unsigned char * str , short maxLen ) ;
  10. void CopyC2P ( char * cStr , unsigned char * pStr ) ;
  11. void ClearMem ( void * mem , int size ) ;
  12. void ConcatPStrings ( unsigned char * dest , unsigned char * src ) ;
  13. void MemCopy ( void * src , void * dst , int len ) ;
  14. void CopyPString ( unsigned char * src , unsigned char * dst ) ;
  15.  
  16. #endif /* str_h */
  17.